home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / cell.jav < prev    next >
Text File  |  1995-12-14  |  1KB  |  66 lines

  1. /*
  2.   File: Cell.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   24Sep95  dl@cs.oswego.edu   Create from collections.java  working file
  11.  
  12. */
  13.   
  14. package collections;
  15.  
  16. import java.util.Enumeration;
  17. import java.util.NoSuchElementException;
  18.  
  19. /**
  20.  *
  21.  *
  22.  * Cell is the base of a bunch of implementation classes
  23.  * for lists and the like.
  24.  * The base version just holds an Object as its element value
  25.  * @author Doug Lea
  26.  * @version 0.93
  27.  *
  28.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  29. **/
  30.  
  31. public class Cell implements Cloneable {
  32.  
  33. // instance variables
  34.  
  35.   private Object   element_;
  36.  
  37. /**
  38.  * Make a cell with element value v
  39. **/
  40.   public Cell(Object v)                  { element_ = v; }
  41. /**
  42.  * Make A cell with null element value
  43. **/
  44.  
  45.   public Cell()                          { element_ = null; }
  46.  
  47. /**
  48.  * return the element value
  49. **/
  50.  
  51.   public final Object element()          { return element_; }
  52.  
  53. /**
  54.  * set the element value
  55. **/
  56.  
  57.   public final void   element(Object v)  { element_ = v; }
  58.  
  59.  
  60.   protected Object clone() throws CloneNotSupportedException { 
  61.     return new Cell(element_);
  62.   }
  63.  
  64. }
  65.  
  66.